forked from rsek/datasworn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.57 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@datasworn/tools",
"version": "0.0.10",
"description": "Internal tools used to develop Datasworn packages.",
"type": "module",
"private": true,
"scripts": {
"check": "tsc --project tsconfig.json --noEmit",
"build:schema": "ts-node ./src/scripts/schema/buildSchema.ts",
"build:jtd": "ts-node ./src/scripts/json-typedef/index.ts",
"build:dts": "ts-node ./src/scripts/codegen/writeTypescriptTypes.ts",
"build:json": "ts-node ./src/scripts/datasworn/writeDatasworn.ts",
"build:pkg": "ts-node ./src/scripts/pkg/nodejs/buildPackages.ts && tsc --project ./src/pkg-core/tsconfig.json",
"build": "ts-node ./src/scripts/pkg/nodejs/updatePackageVersions.ts && npm run build:schema && npm run build:jtd && npm run build:dts && npm run build:json && npm run build:pkg",
"pkg:node": "ts-node ./src/scripts/pkg/nodejs/publishPackages.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsek/datasworn.git"
},
"keywords": [
"ironsworn",
"starforged",
"TTRPG"
],
"author": {
"name": "rsek",
"email": "[email protected]",
"url": "https://github.com/rsek"
},
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/rsek/datasworn/issues"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/json-pointer": "^1.0.34",
"@types/json-schema": "^7.0.15",
"@types/lodash-es": "^4.17.11",
"@types/node": "^20.9.0",
"@types/picomatch": "^2.3.3",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"esbuild": "0.19.9",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"json-schema": "^0.4.0",
"npm-dts": "^1.3.12",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"type-fest": "^4.7.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.2"
},
"dependencies": {
"@sinclair/typebox": "^0.32.15",
"@sinclair/typebox-codegen": "^0.9.7",
"@swc/core": "^1.3.96",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"cli-table3": "^0.6.3",
"fast-glob": "^3.3.2",
"fs-extra": "^11.1.1",
"json-pointer": "^0.6.2",
"json-schema-library": "^9.1.2",
"json-schema-to-typescript": "^13.1.1",
"jtd": "^0.1.1",
"lodash-es": "^4.17.21",
"picomatch": "^3.0.1",
"prettier": "^3.0.3",
"prettier-config-standard": "^7.0.0",
"remark": "^15.0.1",
"winston": "^3.11.0",
"yaml": "^2.3.4"
}
}