-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.08 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": "toolbox-devvit",
"version": "0.3.2",
"description": "Helpers for working with /r/toolbox data from Devvit community apps.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"fmt": "dprint fmt",
"build": "tsc",
"test": "ava",
"coverage": "nyc ava",
"docs": "typedoc src/index.ts",
"prepublishOnly": "tsc && ava"
},
"repository": "https://github.com/toolbox-team/toolbox-devvit.git",
"author": "eritbh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/toolbox-team/toolbox-devvit/issues"
},
"homepage": "https://github.com/toolbox-team/toolbox-devvit#readme",
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@devvit/public-api": "^0.11.2",
"@types/node": "^13.7.4",
"ava": "^5.3.0",
"dprint": "^0.40.2",
"eslint": "^6.8.0",
"nyc": "^15.0.0",
"tsx": "^3.12.7",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
},
"dependencies": {
"pako": "^1.0.11"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=tsx",
"--no-warnings"
]
}
}