-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 KB
/
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
43
44
45
46
47
48
49
{
"name": "@susisu/type-of-schema",
"version": "0.3.0",
"description": "Derives TypeScript type from JSON Schema",
"repository": "https://github.com/susisu/type-of-schema.git",
"author": "Susisu <susisu2413@yahoo.co.jp>",
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
}
}
},
"files": [
"lib",
"src",
"!src/**/*.{test,spec}.{ts,tsx}",
"!src/**/__tests__"
],
"scripts": {
"format": "prettier --write '*.js' src",
"format:check": "prettier --check '*.js' src",
"lint": "eslint --fix '*.js' src",
"lint:check": "eslint '*.js' src",
"test": "tsc -p tsconfig.json --noEmit",
"build": "tsup",
"prepublishOnly": "run-s format:check lint:check test build"
},
"devDependencies": {
"@susisu/eslint-config": "^0.0.90",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"npm-run-all2": "^6.2.3",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
}
}