-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "esbuild-svelte",
"version": "0.9.0",
"description": "esbuild plugin to resolve .svelte files",
"repository": {
"type": "git",
"url": "git+/~https://github.com/EMH333/esbuild-svelte.git"
},
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/CHANGELOG.md"
],
"scripts": {
"prepublishOnly": "git push origin --follow-tags",
"postversion": "npm publish",
"preversion": "npm run lint && npm run build && npm test && npm run test:compatibility",
"pretest": "tsc -p tsconfig.json --noEmit",
"test": "uvu test/ .*\\.mjs",
"test:compatibility": "npm run build && test/versionTests/versionTests.sh",
"build": "node build.js",
"lint": "prettier --check --cache .",
"fix": "prettier --write --cache ."
},
"keywords": [
"svelte",
"esbuild",
"plugin"
],
"author": {
"name": "Ethan Hampton",
"url": "https://www.ethohampton.com"
},
"license": "MIT",
"peerDependencies": {
"esbuild": ">=0.17.0",
"svelte": ">=4.2.1 <6"
},
"devDependencies": {
"@types/node": "^18.15.3",
"esbuild": "^0.24.0",
"prettier": "^3.4.0",
"rewrite-imports": "^3.0.0",
"sass": "^1.83.0",
"svelte": "^5.19.0",
"svelte-preprocess-esbuild": "^3.0.0",
"svelte-preprocess-sass": "^2.0.1",
"typescript": "^5.5.2",
"uvu": "^0.5.6"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.19"
}
}