-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 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
{
"name": "svelteup",
"version": "4.0.2",
"description": "A command line is used to bundle svelte components as web component default.",
"module": "dist/index.js",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "tsup src/index.ts --format esm,cjs",
"build": "tsup src/index.ts --format esm,cjs --dts",
"commit": "git-cz",
"test": "uvu tests test.mjs -i setup",
"format": "prettier --write --plugin-search-dir=. ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/brandonxiang/svelteup.git"
},
"keywords": [
"svelte",
"esbuild",
"web component"
],
"author": "brandonxiang",
"files": [
"dist",
"bin.js"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/brandonxiang/svelteup/issues"
},
"homepage": "https://github.com/brandonxiang/svelteup#readme",
"dependencies": {
"bundle-require": "^5.0.0",
"esbuild": "0.24.0",
"esbuild-svelte": "0.9.0",
"fast-glob": "^3.3.2",
"sade": "^1.8.1",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^22.9.0",
"@types/lodash.merge": "^4.6.9",
"autoprefixer": "^10.4.20",
"eslint-plugin-svelte": "^2.46.0",
"git-cz": "^4.9.0",
"globals": "^15.12.0",
"postcss": "^8.4.49",
"puppeteer": "15.5.0",
"release-it": "^17.10.0",
"sirv": "^3.0.0",
"svelte": "^5.1.16",
"svelte-preprocess": "^6.0.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"eslint": "^9.14.0",
"typescript-eslint": "^8.14.0",
"uvu": "^0.5.6"
},
"bin": {
"svelteup": "bin.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"pnpm": {
"overrides": {
"rollup": "npm:@rollup/wasm-node"
}
}
}