-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.7 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
{
"name": "suunta",
"version": "4.2.0",
"description": "The new client-side router",
"type": "module",
"main": "./lib/core/suunta.js",
"scripts": {
"prepublishOnly": "npm run build",
"test": "web-test-runner test/**/*.test.ts --node-resolve",
"test:watch": "web-test-runner test/**/*.test.ts --watch --node-resolve",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Simplr/suunta.git"
},
"keywords": [],
"author": "Matias Huhta <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Simplr/suunta/issues"
},
"homepage": "https://github.com/Simplr/suunta#readme",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@open-wc/testing": "^4.0.0",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.8",
"@web/dev-server": "^0.4.6",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.19.0",
"esbuild": "^0.23.1",
"lit-html": "^3.2.0",
"typescript": "^5.6.2"
},
"exports": {
".": {
"types": "./types/core/suunta.d.ts",
"import": "./lib/core/suunta.js"
},
"./fetch": {
"types": "./types/fetch/index.d.ts",
"import": "./lib/fetch/index.js"
},
"./fetch/core": {
"types": "./types/fetch/fetch.d.ts"
},
"./state": {
"types": "./types/core/state.d.ts",
"import": "./lib/core/state.js"
},
"./triggers": {
"types": "./types/core/triggers.d.ts",
"import": "./lib/core/triggers.js"
}
}
}