-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 958 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 958 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
39
40
41
{
"name": "@hurihuchi/accio",
"version": "1.0.6",
"description": "",
"main": "dist/bundle.js",
"bin": {
"accio": "./dist/bundle.js"
},
"files": [
"dist"
],
"scripts": {
"watch": "tsc -w",
"build": "./node_modules/.bin/esbuild src/index.ts --bundle --outfile=dist/bundle.js --platform=node --packages=external",
"prepare": "npm version patch"
},
"keywords": [
"cli",
"playground",
"javascript",
"react"
],
"author": "HuriHuchi",
"license": "ISC",
"repository": "https://github.com/HuriHuchi/accio",
"homepage": "https://github.com/HuriHuchi/accio#readme",
"dependencies": {
"@commander-js/extra-typings": "^11.1.0",
"chalk": "4.1.2",
"commander": "^11.1.0",
"figlet": "^1.7.0",
"open": "^10.0.3"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/node": "20.8.2",
"esbuild": "0.20.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3"
}
}