-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.78 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
{
"name": "signboard",
"version": "1.0.2-snapshot",
"description": "WebGL-based LED SignBoard effect for image / video / text",
"main": "dist/signboard.js",
"module": "dist/signboard.esm.js",
"types": "declaration/index.d.ts",
"scripts": {
"dev": "rollup -w --config ./rollup.config.dev.js",
"build": "rm -rf ./dist && rollup -c && npm run declaration",
"declaration": "rm -rf ./declaration && tsc -p tsconfig.declaration.json",
"demo:build": "npm --prefix ./demo/ run build",
"demo:prebuild-version": "cpx 'dist/**/*' demo/release/$npm_package_version --clean",
"demo:prebuild-latest": "cpx 'dist/**/*' demo/release/latest --clean",
"demo:predeploy": "npm run build && npm run docs && npm run demo:prebuild-version && npm run demo:prebuild-latest",
"demo:deploy": "npm run demo:predeploy && npm run demo:build && gh-pages -d demo/build --add",
"docs": "jsdoc-to-mdx -c ./jsdoc-to-mdx.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WoodNeck/signboard.git"
},
"author": "WoodNeck",
"license": "MIT",
"bugs": {
"url": "https://github.com/WoodNeck/signboard/issues"
},
"homepage": "https://github.com/WoodNeck/signboard#readme",
"devDependencies": {
"@daybrush/jsdoc": "^0.3.10",
"@egjs/build-helper": "0.0.5",
"@types/css-font-loading-module": "0.0.6",
"bulma": "^0.9.2",
"concurrently": "^6.2.0",
"cpx": "^1.5.0",
"eslint": "^7.30.0",
"gh-pages": "2.0.1",
"http-serve": "^1.0.1",
"jsdoc-to-mdx": "^1.0.4-beta.1",
"rollup": "^1.10.1",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"tslib": "^2.3.0",
"tslint-consistent-codestyle": "^1.15.1",
"typescript": "^4.3.3"
},
"dependencies": {}
}