-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 929 Bytes
/
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
{
"name": "@walrus/unicode-emoji",
"version": "1.3.0",
"repository": "[email protected]:walrusjs/unicode-emoji.git",
"author": "wangxingkang <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"download": "walrus run ./scripts/download-unicode-data.ts",
"export": "walrus run ./scripts/export.ts",
"build": "rimraf lib && tsc -p tsconfig.build.json",
"prettier": "pretty-quick --staged",
"release": "walrus release",
"commit": "commit"
},
"devDependencies": {
"@walrus/cli": "^1.3.4",
"@walrus/commit": "^1.2.0",
"@walrus/plugin-release": "1.12.2",
"@walrus/plugin-run": "^0.5.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}