-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 2.69 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "akte",
"type": "module",
"version": "0.4.2",
"description": "A minimal static site (and file) generator",
"author": "Lucie Haberer <hello@lihbr.com> (https://lihbr.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "ssh://git@github.com/lihbr/akte.git"
},
"keywords": [
"typescript",
"akte"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./vite": {
"types": "./dist/vite/index.d.ts",
"import": "./dist/vite.js",
"require": "./dist/vite.cjs"
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"vite": [
"dist/vite/index.d.ts"
]
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16.13.0"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"format": "prettier --write .",
"prepare": "npm run build",
"release": "npm run test && standard-version && git push --follow-tags && npm run build && npm publish",
"release:dry": "standard-version --dry-run",
"release:alpha": "npm run test && standard-version --release-as major --prerelease alpha && git push --follow-tags && npm run build && npm publish --tag alpha",
"release:alpha:dry": "standard-version --release-as major --prerelease alpha --dry-run",
"lint": "eslint --ext .js,.ts .",
"types": "tsc --noEmit",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch",
"size": "size-limit",
"test": "npm run lint && npm run types && npm run unit && npm run build && npm run size"
},
"peerDependencies": {
"html-minifier-terser": "^7.0.0",
"vite": ">=4.0.0"
},
"peerDependenciesMeta": {
"html-minifier-terser": {
"optional": true
},
"vite": {
"optional": true
}
},
"dependencies": {
"debug": "^4.3.4",
"http-proxy": "^1.18.1",
"radix3": "^1.1.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.42.1",
"@size-limit/preset-small-lib": "^11.1.2",
"@types/html-minifier-terser": "^7.0.2",
"@types/http-proxy": "^1.17.14",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tsdoc": "^0.2.17",
"html-minifier-terser": "^7.2.0",
"memfs": "^4.9.2",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"size-limit": "^11.1.2",
"standard-version": "^9.5.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-sdk": "^0.1.2",
"vitest": "^1.6.0"
},
"workspaces": [
".",
"docs",
"playground",
"examples/*/*"
],
"publishConfig": {
"access": "public"
}
}