-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.8 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
50
51
52
53
54
55
56
57
58
{
"name": "@kurone-kito/jsonresume-types",
"version": "0.5.0",
"description": "TypeScript type definition for JSON Resume",
"keywords": [
"curriculum vitae",
"CV",
"JSONResume",
"JSON Resume",
"resume",
"Types definition",
"TypeScript"
],
"homepage": "https://github.com/kurone-kito/jsonresume-types#readme",
"bugs": "https://github.com/kurone-kito/jsonresume-types/issues",
"repository": "github:kurone-kito/jsonresume-types",
"license": "MIT",
"author": "kurone-kito <krone@kit.black> (https://kit.black/)",
"type": "module",
"main": "index.d.ts",
"types": "index.d.ts",
"files": [
"index.d.ts"
],
"scripts": {
"build": "json2ts -i node_modules/resume-schema/schema.json -o index.d.ts",
"clean": "rimraf -g \"*.d.ts\" \"*.tgz\" \"node_modules/.cache/**/*\"",
"cspell": "cspell lint --no-progress --show-suggestions -u \"./**/*\"",
"prepack": "npm run -s clean && npm run -s build",
"prepare": "husky install",
"prettier": "prettier --cache --log-level=warn \"./**/*\"",
"prettier:check": "npm run -s prettier -- -cu",
"prettier:fix": "npm run -s prettier -- -uw",
"test": "npm run -s cspell && npm run -s prettier:check"
},
"prettier": "@kurone-kito/prettier-config",
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@cspell/cspell-types": "^7.3.8",
"@kurone-kito/cspell-config": "^0.7.6",
"@kurone-kito/prettier-config": "^0.7.6",
"cspell": "^7.3.8",
"husky": "^8.0.3",
"json-schema-to-typescript": "^13.1.1",
"lint-staged": "^15.0.1",
"prettier": "^3.0.3",
"resume-schema": "^1.0.0",
"rimraf": "^5.0.5"
},
"packageManager": "npm@9.8.1",
"engines": {
"node": ">=18.18"
},
"publishConfig": {
"access": "public"
}
}