-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
{
"name": "seen-editor",
"version": "0.1.5",
"description": "seen editor",
"type": "module",
"keywords": [
"seen",
"programming language",
"editor",
"س",
"لغة برمجة",
"محرر"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abukhadra/seen-editor.git"
},
"directories": {
"example": "examples",
"lib": "lib"
},
"imports": {
"#seen-compiler/*": "/lib/scomp.js"
},
"scripts": {
"predevrelease": "npm i",
"devrelease": "vite build --minify false",
"postdevrelease" : "node ./lib/release/html2JS.js && rm -rf ./dist/src && node ./lib/release/banner.js",
"prerelease": "npm i",
"release": "vite build",
"postrelease": "node ./lib/release/html2JS.js && rm -rf ./dist/src && node ./lib/release/banner.js",
"preinstall": "npm run clean-out",
"clean": "npm run clean-out && rm -rf ./node_modules && rm -rf ./package-lock.json",
"clean-out": "rm -rf ./dist",
"ex-edit": "npx http-server --cors -o ./examples/en-editor.html",
"ex-code": "npx http-server --cors -o ./examples/en-code.html",
"ar-ex-edit": "npx http-server --cors -o ./examples/ar-editor.html",
"ar-ex-code": "npx http-server --cors -o ./examples/ar-code.html"
},
"author": "Mustafa Abukhadra",
"license": "MIT",
"homepage": "https://seenlang.org",
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"vite-plugin-singlefile": "^2.0.2",
"http-server": "^14.1.1"
}
}