-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 951 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
38
39
40
41
42
{
"name": "@croct/json",
"version": "0.0.0-dev",
"description": "Strong JSON typing for TypeScript.",
"author": {
"name": "croct",
"email": "[email protected]",
"url": "https://github.com/croct-tech/json-js"
},
"license": "MIT",
"keywords": [
"croct",
"typescript",
"json"
],
"types": "index.d.ts",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/json-js.git"
},
"bugs": {
"url": "https://github.com/croct-tech/json-js/issues"
},
"homepage": "https://github.com/croct-tech/json-js",
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"validate": "tsd test",
"build": "tsc -p tsconfig.build.json"
},
"devDependencies": {
"@croct/eslint-plugin": "^0.7.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^9.0.0",
"tsd": "^0.31.0",
"typescript": "^5.0.0"
},
"files": [
"**/*.js",
"**/*.ts"
]
}