-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.57 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.57 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": "scarletsframe",
"description": "A frontend framework that can help you write a simple web structure",
"version": "0.35.28",
"repository": {
"type": "git",
"url": "https://github.com/ScarletsFiction/ScarletsFrame.git"
},
"author": "ScarletsFiction",
"license": "MIT",
"bugs": {
"url": "https://github.com/ScarletsFiction/ScarletsFrame/issues"
},
"browserslist": [
"Chrome >= 55",
"Firefox >= 42"
],
"scripts": {
"start": "snowpack dev",
"build-dev": "rollup -c -w",
"build-prod": "rollup -c --environment production"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/plugin-transform-optional-chaining": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@babel/runtime": "^7.28.4",
"@rollup/plugin-babel": "^6.1.0",
"@snowpack/plugin-babel": "^2.1.7",
"@snowpack/plugin-dotenv": "^2.2.0",
"rollup": "^4.52.4",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"snowpack": "^3.8.8"
},
"main": "src/index.prod.js",
"module": "src/index.prod.js",
"types": "src/index.d.ts",
"sideEffects": false,
"keywords": [
"dom-binding",
"data-binding",
"two-way-databinding",
"framework",
"html",
"frontend",
"router",
"assetloader"
],
"pnpm": {
"overrides": {
"tough-cookie@<4.1.3": ">=4.1.3",
"rollup@<2.79.2": ">=2.79.2",
"esbuild@<=0.24.2": ">=0.25.0",
"form-data@<2.5.4": ">=2.5.4"
}
}
}