-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "define-route",
"version": "0.3.1",
"description": "",
"author": "erictooth",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/erictooth/define-route.git"
},
"homepage": "https://github.com/erictooth/define-route",
"bugs": {
"url": "https://github.com/erictooth/define-route/issues"
},
"files": [
"dist-cjs",
"dist-esm"
],
"main": "./dist-cjs/index.js",
"module": "./dist-esm/index.js",
"exports": {
"import": "./dist-esm/index.js",
"require": "./dist-cjs/index.js"
},
"devDependencies": {
"@erictooth/semantic-release-npm-github-config": "^1.0.3",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.5",
"@swc/jest": "^0.2.23",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.3",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"jsdom": "^20.0.1",
"prettier": "^2.7.1",
"semantic-release": "17",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"scripts": {
"prepack": "make prepack"
},
"packageManager": "[email protected]",
"release": {
"extends": "@erictooth/semantic-release-npm-github-config",
"branches": [
"main"
]
}
}