This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.08 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": "snowpack-plugin-import-map",
"version": "2.1.0",
"description": "snowpack-plugin-import-map",
"main": "built/index.js",
"type": "module",
"scripts": {
"test": "ava",
"build": "rm -rf built && swc src --out-dir built --sync && tsc --pretty --skipLibCheck --declaration --emitDeclarationOnly",
"build:watch": "concurrently 'swc src -w --out-dir built --sync' 'tsc -w --pretty --skipLibCheck --declaration --emitDeclarationOnly'",
"release": "standard-version",
"lint": "eslint --ext .js,.ts src",
"press": "pnpm test && pnpm build && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/seia-soto/snowpack-plugin-import-map.git"
},
"keywords": [
"snowpack",
"snowpack-plugin",
"cdn"
],
"authors": [
"zhoukekestar@163.com",
"joshwilsonvu@gmail.com",
"seia@outlook.kr"
],
"license": "MIT",
"bugs": {
"url": "/~https://github.com/Seia-Soto/snowpack-plugin-import-map/issues"
},
"homepage": "/~https://github.com/Seia-Soto/snowpack-plugin-import-map#readme",
"dependencies": {
"is-number": "^7.0.0"
},
"devDependencies": {
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.26",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": ">=5.43.0",
"@typescript-eslint/parser": ">=5.43.0",
"ava": "^5.1.0",
"chokidar": "^3.5.3",
"concurrently": "^7.6.0",
"eslint": ">=8.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.55.1",
"eslint-import-resolver-node": "^0.3.7",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"snowpack": "^3.8.8",
"standard": "^17.0.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": ">=4.4"
},
"peerDependencies": {
"snowpack": "^3.8.8"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
}
}