-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
76 lines (76 loc) · 1.62 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "typesafe-routes",
"version": "12.1.1-dev.0",
"repository": "[email protected]:kruschid/typesafe-routes.git",
"author": "Denis Kruschinski <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./angular-router": {
"import": "./dist/adapters/angular-router.mjs",
"require": "./dist/adapters/angular-router.js"
}
},
"typesVersions": {
">=4.5": {
"angular-router": [
"dist/adapters/angular-router.d.mts",
"dist/adapters/angular-router.d.ts"
]
}
},
"tsup": {
"entry": [
"src/index.ts",
"src/adapters/angular-router.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"format": [
"esm",
"cjs"
],
"dts": true
},
"scripts": {
"docs": "docsify serve ./docs",
"build": "yarn test && yarn tsup && yarn pack && yarn attw --pack .",
"test": "yarn tape -r ts-node/register test/*.ts"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.1",
"@types/node": "20.11.4",
"@types/tape": "^5.6.4",
"tape": "^5.7.3",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^4.5.0"
},
"dependencies": {
"ts-toolbelt": "^9.6.0"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
]
}