-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.47 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "tason",
"version": "1.1.4-beta2",
"description": "Type-Augmented Serialization Object Notation",
"type": "module",
"keywords": [
"json",
"json5",
"typescript",
"json-like",
"serialization",
"parser",
"antlr"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"generate": "cd src/grammar && antlr4 -v 4.13.2 -Dlanguage=TypeScript TASON.g4",
"build": "tsc && tsc-alias",
"test": "jest"
},
"files": [
"lib"
],
"author": "LoveKicher",
"repository": {
"type": "git",
"url": "https://github.com/SwingCosmic/tason.git"
},
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/type-detect": "^4.0.3",
"@types/unescape-js": "^1.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsc-alias": "^1.8.10",
"tslib": "^2.8.1",
"type-fest": "^4.34.0",
"typescript": "^5.2.2",
"valibot": "^1.0.0"
},
"dependencies": {
"@date-fns/utc": "^2.1.0",
"antlr4": "^4.13.2",
"base64-arraybuffer": "^1.0.2",
"date-fns": "^4.1.0",
"decimal.js": "^10.5.0",
"js-string-escape": "^1.0.1",
"reflect-metadata": "^0.2.2",
"type-detect": "^4.1.0",
"unescape-js": "^1.1.4",
"uuid": "^11.1.0"
},
"peerDependencies": {
"valibot": "^1.0.0"
},
"peerDependenciesMeta": {
"valibot": {
"optional": true
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}