-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
49
50
51
52
53
54
{
"name": "xdsh",
"version": "0.6.0",
"description": "A shell simulator running on website",
"scripts": {
"dev": "rollup -w -c rollup.config.dev.js --bundleConfigAsCjs",
"build": "rollup -c rollup.config.build.js --bundleConfigAsCjs",
"deploy": "rollup -c rollup.config.deploy.js --bundleConfigAsCjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/insorker/xdsh.git"
},
"author": "insorker",
"keywords": ["shell"],
"license": "MIT",
"bugs": {
"url": "https://github.com/insorker/xdsh/issues"
},
"homepage": "https://github.com/insorker/xdsh#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"rollup": "^3.17.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.2",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": ["dist"],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.umd.js"
},
"./dist/xdsh.css": {
"import": "./dist/xdsh.css",
"require": "./dist/style.css"
}
}
}