-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "svelte-switch-case",
"version": "2.0.0",
"description": "Switch case syntax for Svelte",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist/*",
"test": "vitest run",
"build": "npm run clean && babel --out-dir dist --extensions \".ts\" src",
"prepublishOnly": "npm run build && npm test",
"example:install": "npm --prefix example/ install",
"example:dev": "npm --prefix example/ run dev",
"example:build": "npm --prefix example/ run build",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.0.6",
"babel-plugin-add-module-exports": "^1.0.4",
"magic-string": "^0.26.2",
"rimraf": "^3.0.2",
"svelte-parse": "^0.1.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"husky": "^8.0.1",
"vitest": "^0.19.1"
}
}