-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 966 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
{
"name": "@dicekeys/dicekeys-api-js",
"version": "0.1.13",
"description": "DiceKeys API for Javascript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scope": "@dicekeys/dicekeys-api-js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/dicekeys",
"access": "public"
},
"repository": "https://github.com/dicekeys/dicekeys-api-js.git",
"author": "Stuart Schechter <stuart@dicekeys.com>",
"license": "NOT YET LICENSED",
"files": [
"/dist/",
"/src/",
"!/dist/tests/",
"!/src/tests/"
],
"scripts": {
"prepare": "tsc",
"build": "tsc",
"cross-compile": "ts-node cross-compiling/generate.ts",
"build-docs": "typedoc && copyfiles --flat _config.yml docs/"
},
"browserslist": [
"last 1 Chrome versions"
],
"devDependencies": {
"@types/jsdom": "^16.2.13",
"@types/node": "^17.0.25",
"copyfiles": "^2.4.1",
"ts-node": "^10.3.0",
"typescript": "^4.6.3"
}
}