-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "mettle",
"version": "0.2.1",
"description": "A approachable, fast, flexible and lightweight JavaScript library for building user interfaces.",
"main": "dist/mettle.full.js",
"module": "dist/mettle.runtime-esm.js",
"unpkg": "dist/mettle.full.prod.js",
"jsdelivr": "dist/mettle.full.prod.js",
"files": [
"dist"
],
"scripts": {
"tsc": "tsc",
"build": "tsc && npm run build-red && npm run build-rep && npm run build-fed && npm run build-fep && npm run build-fd && npm run build-fp",
"build-red": "rollup -c config/index.js --environment TARGET:runtime-esm-dev",
"build-rep": "rollup -c config/index.js --environment TARGET:runtime-esm-prod",
"build-fed": "rollup -c config/index.js --environment TARGET:full-esm-dev",
"build-fep": "rollup -c config/index.js --environment TARGET:full-esm-prod",
"build-fd": "rollup -c config/index.js --environment TARGET:full-dev",
"build-fp": "rollup -c config/index.js --environment TARGET:full-prod"
},
"repository": {
"type": "git",
"url": "https://github.com/maomincoding/mettle"
},
"private": false,
"keywords": [
"mettle",
"mettlejs",
"mettle-js",
"dom",
"mvvm",
"virtual dom",
"html",
"template",
"string",
"view",
"javascript"
],
"author": "maomincoding",
"license": "MIT",
"bugs": {
"url": "https://github.com/maomincoding/mettle/issues"
},
"homepage": "https://github.com/maomincoding/mettle#readme",
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^2.57.0",
"typescript": "^4.6.3"
}
}