-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.17 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.17 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "modular-openscriptjs",
"version": "2.1.3",
"description": "OpenScriptJs Framework - A lightweight, reactive JavaScript framework for building modern web applications",
"type": "module",
"main": "./dist/modular-openscriptjs.umd.js",
"module": "./dist/modular-openscriptjs.es.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/modular-openscriptjs.es.js",
"require": "./dist/modular-openscriptjs.umd.js"
},
"./styles": "./dist/styles/tailwind.css",
"./plugin": {
"types": "./build/vite-plugin-openscript.d.ts",
"import": "./build/vite-plugin-openscript.js",
"require": "./build/vite-plugin-openscript.js"
}
},
"files": [
"dist",
"build/vite-plugin-openscript.js",
"build/vite-plugin-openscript.d.ts",
"styles",
"index.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"openscript",
"openscriptjs",
"framework",
"reactive",
"components",
"spa",
"web-framework",
"javascript",
"frontend",
"ui"
],
"author": "Levi Kamara Zwannah",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenScriptJs/modular-openscript.git"
},
"bugs": {
"url": "https://github.com/OpenScriptJs/modular-openscript/issues"
},
"homepage": "https://github.com/OpenScriptJs/modular-openscript#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/generator": "^7.26.2",
"@babel/parser": "^7.26.2",
"@babel/traverse": "^7.26.2",
"@testing-library/dom": "^10.4.0",
"@vitest/ui": "^4.0.14",
"autoprefixer": "^10.4.20",
"happy-dom": "^20.0.10",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"terser": "^5.36.0",
"vite": "^7.2.4",
"vitest": "^4.0.14"
},
"dependencies": {
"magic-string": "^0.30.21"
}
}