-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "dataforged",
"version": "1.5.3",
"description": "Official content and rules data for the Ironsworn: Starforged tabletop role-playing game, formatted as JSON for use in community tools. 🚀 Includes JSON schemas and a Javascript/Typescript API.",
"type": "commonjs",
"exports": {
".": {
"import": "./dist/index-esm.mjs",
"require": "./dist/index.js"
}
},
"types": "./dist/types/index.d.ts",
"scripts": {
"build:cjs": "tsc --project tsconfig-cjs.json",
"build:esm": "tsc --project tsconfig-esm.json && mv ./dist/index-esm.js ./dist/index-esm.mjs",
"build": "yarn build:cjs && yarn build:esm",
"readme": "npx @appnest/readme generate -i ./src/templates/blueprint.md ./ -c ./src/templates/blueprint.json",
"postversion": "yarn readme && git add README.md"
},
"files": [
"dist",
"docs",
"img",
"markdown"
],
"directories": {
"doc": "./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsek/dataforged.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/dataforged/issues"
},
"homepage": "https://rsek.github.io/dataforged",
"readme": "https://rsek.github.io/dataforged",
"devDependencies": {
"@types/node": "^18.0.3",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}