-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 894 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 894 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
{
"name": "@-ft/mode-codegen",
"version": "0.0.1",
"description": "mode - codegen version",
"bin": {
"mode-codegen": "./bin.js"
},
"scripts": {
"build": "rimraf dist && tsc && cpy README.md dist && package-json-minifier",
"publish": "npm run build && cd dist && npm publish",
"test": "tsc && node --import tsx --test test/**/*.test.ts"
},
"author": "Juyeong Maing <mjy9088@naver.com>",
"repository": {
"type": "git",
"url": "https://github.com/42ts/-ft-mode-codegen.git"
},
"license": "MIT",
"peerDependencies": {
"@-ft/mode": "^0.0.6"
},
"peerDependenciesMeta": {
"@-ft/mode": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^24.0.7",
"cpy-cli": "^5.0.0",
"mkdirp": "^3.0.1",
"package.json-minifier": "^0.0.4",
"rimraf": "^5.0.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}