-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.43 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
{
"name": "template",
"version": "0.0.1",
"description": "A template used for every single repository in this organization 📏",
"author": "ijsKoud <[email protected]>",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"files": [
"dist/"
],
"homepage": "https://github.com/snowcrystals/template",
"scripts": {
"build": "tsup src",
"build:watch": "tsc --watch",
"start:dev": "nodemon ./dist",
"start": "node ./dist",
"lint": "eslint src",
"postinstall": "is-ci || husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"bump": "cliff-jumper",
"docs": "typedoc-json-parser"
},
"resolutions": {
"load-tsconfig": "^0.2.5"
},
"devDependencies": {
"@favware/cliff-jumper": "^3.0.3",
"@snowcrystals/eslint-config": "^1.0.2",
"@sapphire/ts-config": "^5.0.1",
"@snowcrystals/prettier-config": "^1.0.0",
"@types/node": "^20.17.10",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"lint-staged": "^15.3.0",
"nodemon": "^3.1.9",
"pinst": "^3.0.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typedoc-json-parser": "^10.2.0",
"typescript": "5.7.2"
},
"engines": {
"node": ">= v18.16.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}