-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 813 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 813 Bytes
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
{
"name": "ectype",
"version": "1.0.5",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "npm run clean && npm run build",
"build": "tsc",
"watch": "tsc --watch",
"clean": "rm -rf dist/",
"test": "node dist/test/test.js",
"check": "node dist/bin/ectype.js check",
"prettier": "prettier \"./**/*.{ts,js}\" --write"
},
"files": [
"dist/**/*",
"!dist/test"
],
"bin": {
"ectype": "dist/bin/ectype.js"
},
"author": "Holly Wu",
"repository": {
"type": "git",
"url": "https://gitlab.com/dejawu/ectype"
},
"license": "ISC",
"type": "module",
"dependencies": {
"acorn": "^8.11.2",
"chalk": "^5.1.2",
"ts-pattern": "^4.2.2",
"typescript": "^4.9.3"
},
"devDependencies": {
"@types/node": "^18.11.11"
}
}