-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 994 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
35
36
37
{
"name": "tson-serializer",
"version": "1.0.3",
"description": "Type-safe JSON serializer",
"main": "index.js",
"types": "index.d.ts",
"module": "index.mjs",
"scripts": {
"test": "npx ts-node tests/test.ts",
"clean": "rm index.d.ts index.js index.mjs",
"build": "npm run build:esm&&npm run build:cjs&&npm run build:docs",
"build:esm": "npx tsc&&mv index.js index.mjs",
"build:cjs": "npx tsc -p tsconfig.cjs.json",
"build:docs": "npx typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/System233/tson-serializer.git"
},
"keywords": [
"Type-safe",
"JSON",
"serializer",
"TSON"
],
"author": "System233",
"license": "MIT",
"bugs": {
"url": "https://github.com/System233/tson-serializer/issues"
},
"homepage": "https://github.com/System233/tson-serializer#readme",
"devDependencies": {
"typedoc": "^0.22.15",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.6.4"
}
}