-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.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
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
77
78
79
80
81
{
"name": "solidjs-sense-router",
"version": "2.1.0",
"description": "router for solidjs",
"keywords": [
"router",
"solidjs",
"solid",
"SPA",
"spa",
"SSR",
"ssr"
],
"homepage": "https://github.com/solidjs-sense/solidjs-sense-router",
"bugs": {
"url": "https://github.com/solidjs-sense/solidjs-sense-router/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs-sense/solidjs-sense-router.git"
},
"author": "iamcco (https://github.com/iamcco)",
"contributors": [
{
"name": "iamcco",
"email": "ooiss@qq.com"
}
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"start": "cd sample && vite",
"build": "vite build",
"build-sample": "NODE_ENV=production cd sample && vite build",
"lint-ts": "eslint . --ext .ts,.tsx",
"lint-ts-fix": "eslint --fix . --ext .ts,.tsx",
"lint-scss": "stylelint './sample/src/**/*.scss'",
"lint-scss-fix": "stylelint --fix './sample/src/**/*.scss'",
"lint": "yarn lint-ts && yarn lint-scss",
"lint-fix": "yarn lint-ts-fix && yarn lint-scss-fix",
"prepare": "husky install"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"markdown-it": "^12.3.2",
"prettier": "2.6.1",
"sass": "1.49.10",
"solid-js": "^1.3.13",
"stylelint": "14.6.1",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard-scss": "3.0.0",
"stylelint-prettier": "2.0.0",
"typescript": "^4.6.2",
"vite": "^2.8.0",
"vite-plugin-dts": "^1.0.4",
"vite-plugin-solid": "^2.2.6"
},
"peerDependencies": {
"solid-js": "^1.3.13"
},
"dependencies": {}
}