-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.7 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "webmoji",
"description": "A small emoji dataset for the web.",
"version": "3.0.0",
"homepage": "https://github.com/waynesbrain/webmoji",
"keywords": [
"emoji",
"emoticon"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/waynesbrain/webmoji"
},
"type": "module",
"exports": {
"./data": {
"types": "./dist/types/data.d.ts",
"import": "./dist/data.js"
},
"./data_all": {
"types": "./dist/types/data.d.ts",
"import": "./dist/data_all.js"
},
"./data_tags": {
"types": "./dist/types/data.d.ts",
"import": "./dist/data_tags.js"
},
"./types/*": {
"types": "./dist/types/*.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"build": "tsc -b && vite build && npm run cleanup-types",
"cleanup-types": "shx mkdir dist/types && shx mv dist/data.d.ts dist/types/data.d.ts && shx rm dist/data*.d.ts",
"generate": "tsx ./scripts/generate.ts && prettier --write ./src/data*.ts",
"format": "prettier --write \"./{scripts,src}/**/*.{css,js,jsx,scss,ts,tsx}\"",
"lint": "eslint .",
"lint-ts": "tsc -b --noEmit --pretty",
"start": "vite build --watch"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/node": "^22",
"emoji-datasource": "^7.0.2",
"emojibase-data": "^15",
"eslint": "^9.30.1",
"globals": "^16.3.0",
"json5": "^2.2.3",
"prettier": "^3.6.2",
"shx": "^0.4.0",
"tsx": "^4.20.6",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vite": "^7.1.5",
"vite-plugin-dts": "^4.5.4"
},
"prettier": {
"trailingComma": "all",
"proseWrap": "always"
}
}