-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.86 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
61
62
63
64
65
{
"name": "wildflowerjs",
"version": "1.2.0",
"description": "Lightweight reactive JavaScript framework with no build step and no virtual DOM",
"type": "module",
"main": "dist/wildflower.min.js",
"browser": "dist/wildflower.min.js",
"unpkg": "dist/wildflower.min.js",
"jsdelivr": "dist/wildflower.min.js",
"files": [
"dist/*.min.js",
"dist/*.dev.js",
"adapters/",
"types/",
"CHANGELOG.md",
"SECURITY.md",
"PROVENANCE.md"
],
"exports": {
".": {
"default": "./dist/wildflower.min.js"
},
"./mini": "./dist/wildflower.mini.min.js",
"./lite": "./dist/wildflower.lite.min.js",
"./spa": "./dist/wildflower.spa.min.js",
"./full": "./dist/wildflower.full.min.js",
"./adapters/*": "./adapters/*"
},
"types": "types/wildflowerJS.d.ts",
"scripts": {
"build": "node scripts/fetch-rollup.cjs && node scripts/fetch-terser.cjs && node scripts/build-rollup.cjs",
"test": "vitest run --config tests/vitest.browser.config.js",
"test:retry": "node scripts/test-with-retry.cjs",
"test:watch": "vitest --config tests/vitest.browser.config.js",
"test:setup": "npx playwright install chromium"
},
"keywords": [
"framework",
"reactive",
"no-build",
"no-virtual-dom",
"javascript",
"components",
"data-binding",
"lightweight",
"frontend"
],
"author": "WildflowerJS Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wfjs-admin/WildflowerJS.git"
},
"bugs": {
"url": "https://github.com/wfjs-admin/WildflowerJS/issues"
},
"homepage": "https://wildflowerjs.com",
"devDependencies": {
"@vitest/browser": "^4.0.14",
"@vitest/browser-playwright": "^4.0.14",
"cross-env": "^7.0.3",
"playwright": "^1.56.1",
"vitest": "^4.0.14"
}
}