-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 KB
/
package.json
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
{
"name": "@yzfe/litemoji",
"version": "0.0.0",
"description": "Js implementation of litemoji",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"author": "vfasky<[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup",
"test": "node ./test",
"sync:shortcodes": "node ./cli/sync-litemoji-dict.js",
"cpHome": "cp ./README.md ./docs/README.md",
"docs": "npm run cpHome && vuepress dev docs",
"docs:build": "npm run cpHome && NODE_ENV=production vuepress build docs"
},
"dependencies": {
"iconv-lite": "^0.6.3"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/node-fetch": "^2.5.8",
"@yzfe-private/upqn": "^0.0.3",
"node-fetch": "^2.6.1",
"ts-node": "^9.1.1",
"tsup": "^5.11.7",
"typescript": "^4.2.2",
"vuepress": "^1.8.2"
}
}