-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathpackage.json
86 lines (86 loc) · 2.2 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
82
83
84
85
86
{
"name": "@sveltejs/kit",
"version": "1.0.0-next.137",
"type": "module",
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.14",
"cheap-watch": "^1.0.3",
"sade": "^1.7.4",
"vite": "^2.4.3"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.4.2",
"@types/amphtml-validator": "^1.0.1",
"@types/cookie": "^0.4.0",
"@types/globrex": "^0.1.1",
"@types/marked": "^2.0.2",
"@types/mime": "^2.0.3",
"@types/node": "^14.14.43",
"@types/rimraf": "^3.0.0",
"@types/sade": "^1.7.2",
"amphtml-validator": "^1.0.34",
"cookie": "^0.4.1",
"devalue": "^2.0.1",
"eslint": "^7.25.0",
"globrex": "^0.1.2",
"kleur": "^4.1.4",
"locate-character": "^2.0.5",
"marked": "^2.0.3",
"node-fetch": "^3.0.0-beta.9",
"port-authority": "^1.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.47.0",
"selfsigned": "^1.10.11",
"sirv": "^1.0.12",
"svelte": "^3.40.0",
"svelte-check": "^2.2.0",
"svelte2tsx": "~0.4.1",
"tiny-glob": "^0.2.8",
"typescript": "^4.3.5",
"uvu": "^0.5.1"
},
"peerDependencies": {
"svelte": "^3.34.0"
},
"bin": {
"svelte-kit": "svelte-kit.js"
},
"files": [
"assets",
"dist",
"types",
"svelte-kit.js"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"src/core/make_package/test/**\" \"src/**/*.{ts,mjs,js,svelte}\" && npm run check-format",
"check": "tsc && svelte-check --ignore \"src/core/make_package/test\"",
"format": "prettier --write . --config ../../.prettierrc --ignore-path .gitignore",
"check-format": "prettier --check . --config ../../.prettierrc --ignore-path .gitignore",
"prepublishOnly": "npm run build",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "uvu src \"(spec\\.js|test[\\\\/]index\\.js)\"",
"test:integration": "uvu test test.js"
},
"exports": {
"./package.json": "./package.json",
"./ssr": {
"import": "./dist/ssr.js"
},
"./node": {
"import": "./dist/node.js"
},
"./install-fetch": {
"import": "./dist/install-fetch.js"
},
"./adapter-utils": {
"import": "./dist/adapter-utils.js"
},
"./types": "./types/index.d.ts"
},
"types": "types/index.d.ts",
"engines": {
"node": "^12.20 || >=14.13"
}
}