-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 967 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
38
39
40
41
{
"name": "@knuijver/no-self-control",
"version": "1.2.1",
"description": "My personal goto sandbox library",
"repository": {
"type": "git",
"url": "https://github.com/knuijver/no-self-control.git"
},
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build-old": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"build:dev": "rimraf lib && tsup --watch",
"build:prod": "rimraf dist && tsup",
"build:watch": "tsup --watch"
},
"author": "r.knuijver a.k.a Prime",
"license": "BSD 3-Clause",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/node": "^18.14.2",
"rimraf": "^4.2.0",
"tsup": "^6.6.3",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"zod": "^3.20.6"
},
"sideEffects": [
"dist/*",
"lib/**/style/*",
"*.scss"
]
}