-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.22 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
{
"version": "1.5.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alessbell/good-snow-tire-demo"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"changeset-publish": "npm run build && changeset publish",
"changeset-publish-next": "npm run build && changeset publish --tag next",
"changeset-check": "changeset status --verbose --since=origin/main",
"changeset-version": "changeset version && npm i"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "good-snow-tire-demo",
"author": "Alessia Bellisario (github@bellisar.io)",
"module": "dist/good-snow-tire-demo.esm.js",
"devDependencies": {
"@changesets/changelog-github": "0.4.7",
"@changesets/cli": "2.25.2",
"@remix-run/changelog-github": "0.0.5",
"husky": "8.0.2",
"tsdx": "0.14.1",
"tslib": "2.4.1",
"typescript": "4.9.3"
}
}