-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 846 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 846 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
{
"private": true,
"name": "ftson",
"version": "0.0.0",
"description": "Fast JSON powered by TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/basic-examples/ftson.git"
},
"license": "MIT",
"bin": {
"ftson": "./bin.js"
},
"scripts": {
"build": "rimraf dist && tsc && clean-empty-js 'dist/**/*.js' 'dist/**/*.d.ts' && clean-empty-directory dist && cpy README.md dist && package-json-minifier",
"publish": "npm run build && cd dist && npm publish",
"test": "cd test && npm start"
},
"dependencies": {
"args-typed": "^0.0.3",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/node": "^24.0.15",
"clean-empty-directory": "^2.0.0",
"clean-empty-js": "^2.0.2",
"cpy-cli": "^5.0.0",
"package.json-minifier": "^0.0.4",
"rimraf": "^6.0.1"
}
}