-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.78 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": "@architect/sveltekit-adapter",
"version": "0.0.4",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint --ignore-path .gitignore && npm run check-format",
"hydrate:example": "cd example/hn && npm install",
"test:example-integration": "cd example/hn && npm run test",
"test": "npm run test:example-integration",
"dev": "rollup -cw",
"build": "rollup -c",
"format": "prettier --write . --ignore-path .gitignore ",
"check-format": "prettier --check . --ignore-path .gitignore ",
"rc": "npm version prerelease --preid RC",
"prepublishOnly": "npm run build"
},
"bugs": {
"url": "https://github.com/architect/architect/issues"
},
"files": [
"files",
"index.js",
"index.cjs",
"index.cjs.map"
],
"dependencies": {
"@architect/functions": "^3.14.2"
},
"devDependencies": {
"@architect/eslint-config": "^2",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-node-resolve": "^13.0.2",
"@sveltejs/kit": "^1.0.0-next.147",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.2",
"rollup": "^2.47.0",
"tape": "^5.3.0"
},
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"eslintConfig": {
"extends": [
"@architect/eslint-config",
"prettier"
],
"ignorePatterns": [
"**/*.svelte",
"/examples"
],
"parserOptions": {
"sourceType": "module"
}
},
"prettier": {
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"printWidth": 100,
"overrides": [
{
"files": [
"*.svelte"
],
"options": {
"svelteBracketNewLine": true
}
}
]
}
}