-
-
Notifications
You must be signed in to change notification settings - Fork 265
/
package.json
58 lines (58 loc) · 1.79 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
55
56
57
58
{
"name": "asciinema-player",
"description": "Web player for terminal session recordings.",
"version": "3.8.1",
"author": "Marcin Kulik",
"homepage": "https://github.com/asciinema/asciinema-player",
"repository": {
"type": "git",
"url": "https://github.com/asciinema/asciinema-player.git"
},
"license": "Apache-2.0",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./dist/bundle/asciinema-player.css": "./dist/bundle/asciinema-player.css",
"./dist/bundle/asciinema-player.min.js": "./dist/bundle/asciinema-player.min.js"
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "rollup -c --environment production",
"bundle": "rollup -c rollup.config.bundle.mjs --environment production && lessc src/less/asciinema-player.less >dist/bundle/asciinema-player.css",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier src/**/*.js --write"
},
"browserslist": [
"defaults and supports wasm"
],
"prettier": {
"printWidth": 100
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"solid-js": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@wasm-tool/rollup-plugin-rust": "^2.3.3",
"babel-preset-solid": "^1.6.13",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"less": "^4.1.1",
"prettier": "3.2.5",
"rollup": "^3.18.0"
}
}