-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.2 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
{
"name": "astro-console-cleaner",
"version": "0.0.2",
"type": "module",
"main": "./src/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zachhandley/astrojs-remove-console-log.git"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"deploy": "bun run build && npm publish --access public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"astro-integration",
"astro",
"console",
"cleaner"
],
"peerDependencies": {
"astro": "^4.0.0",
"vue": "^3.0.0",
"svelte": "^3.0.0 || ^4.0.0"
},
"dependencies": {
"acorn": "^8.12.1",
"acorn-typescript": "^1.4.13",
"acorn-walk": "^8.3.3",
"escodegen": "^2.1.0",
"esprima": "^4.0.1"
},
"devDependencies": {
"@types/escodegen": "^0.0.10",
"@types/esprima": "^4.0.6",
"@types/node": "^22.2.0",
"astro": "^4.0.0",
"tsup": "^8.2.4",
"typescript": "^5.1.6",
"vitest": "^2.0.5",
"vue": "^3.4.38",
"svelte": "^4.2.18"
}
}