-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.16 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.16 KB
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
{
"name": "@ryupold/vode",
"version": "1.8.0",
"description": "a minimalist web framework",
"author": "Michael Scherbakow (ryupold)",
"license": "MIT",
"icon": "icon.webp",
"keywords": [
"minimal",
"web",
"frontend",
"framework",
"library",
"state",
"simple",
"flow",
"lightweight"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ryupold/vode.git"
},
"bugs": {
"url": "https://github.com/ryupold/vode/issues"
},
"homepage": "https://github.com/ryupold/vode#readme",
"type": "module",
"main": "./dist/vode.mjs",
"types": "./dist/vode.d.ts",
"exports": {
".": {
"types": "./dist/vode.d.ts",
"import": "./dist/vode.min.mjs",
"require": "./dist/vode.cjs.min.js",
"default": "./dist/vode.min.js"
}
},
"scripts": {
"types": "dts-bundle-generator -o ./dist/vode.d.ts ./index.ts --project tsconfig.json",
"build": "esbuild index.ts --bundle --format=esm --outfile=dist/vode.mjs",
"build-min": "esbuild index.ts --bundle --format=esm --minify --outfile=dist/vode.min.mjs",
"build-classic": "esbuild index.ts --outfile=dist/vode.js --bundle --format=iife --global-name=V",
"build-classic-min": "esbuild index.ts --outfile=dist/vode.min.js --bundle --format=iife --global-name=V --minify",
"babel": "npx babel dist/vode.mjs --out-file dist/vode.cjs.min.js",
"babel-classic": "npx babel dist/vode.js --out-file dist/vode.es5.min.js",
"release": "npm run build && npm run build-min && npm run build-classic && npm run build-classic-min && npm run babel && npm run babel-classic && npm run types",
"publish": "npm publish --access public",
"clean": "tsc -b --clean && rm dist/*",
"watch": "tsc -b -w"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.0",
"babel-preset-minify": "0.5.2",
"dts-bundle-generator": "9.5.1",
"esbuild": "0.27.3",
"typescript": "5.9.3"
}
}