-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "@paranatural/turntable-stdlib",
"version": "0.0.0",
"description": "Utilities for Turntable (framework-agnostic flexible SPA router)",
"author": {
"name": "Anton Medvedev",
"email": "[email protected]"
},
"keywords": [
"paranatural",
"turntable",
"router",
"routing",
"spa"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/paranatural/turntable.git",
"directory": "packages/stdlib"
},
"homepage": "https://github.com/paranatural/turntable",
"files": [
"dist",
"readme.md"
],
"scripts": {
"develop": "exit 0",
"format": "exit 0",
"lint": "exit 0",
"typecheck": "tsc --noEmit",
"test": "exit 0",
"build": "rollup -c rollup.config.js",
"clean": "rimraf dist"
},
"peerDependencies": {
"@paranatural/turntable": "^0.0.0"
},
"devDependencies": {
"@paranatural/turntable": "^0.0.0",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^18.18.7",
"read-pkg-up": "^11.0.0",
"rimraf": "^5.0.5",
"rollup": "^4.1.5",
"rollup-plugin-dts": "^6.1.0",
"typescript": "^5.2.2"
}
}