-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.61 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
{
"name": "runcodejs",
"version": "0.7.0",
"description": "A lightweight HTML, CSS and JavaScript playground with live preview.",
"license": "MIT",
"author": "Hemanta Gayen",
"homepage": "https://code-hemu.github.io/runcodejs/",
"repository": {
"type": "git",
"url": "git+https://github.com/code-hemu/runcodejs.git"
},
"bugs": {
"url": "https://github.com/code-hemu/runcodejs/issues"
},
"keywords": [
"playground",
"editor",
"html",
"css",
"javascript",
"live-preview",
"code-editor"
],
"type": "module",
"main": "./dist/runcode.cjs.js",
"browser": "./dist/runcode.js",
"module": "./dist/runcode.esm.js",
"types": "./dist/index.d.ts",
"unpkg": "./dist/runcode.min.js",
"jsdelivr": "./dist/runcode.min.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/runcode.esm.js",
"require": "./dist/runcode.cjs.js",
"default": "./dist/runcode.esm.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "npm run clean && rollup -c",
"playground": "vite playground",
"playground:build": "vite build playground",
"clean": "remove-item dist -r -f",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"remove-item": "^1.0.2",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.2.3",
"typescript": "^5.8.0",
"vite": "^8.1.3"
}
}