forked from justinfagnani/chessboard-element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.45 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
{
"author": "Justin Fagnani <[email protected]> (http://justinfagnani.com/)",
"name": "chessboard-element",
"description": "A chessboard web component",
"homepage": "https://github.com/justinfagnani/chessboard-element",
"license": "MIT",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com/justinfagnani/chessboard-element.git"
},
"main": "index.js",
"module": "index.js",
"type": "module",
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.7.0",
"prettier": "^2.0.5",
"rollup": "^2.26.3",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-minify-html-literals": "^1.2.3",
"rollup-plugin-terser": "^7.0.0",
"typescript": "~3.9.6",
"web-component-analyzer": "^1.0.2"
},
"scripts": {
"serve": "es-dev-server --node-resolve",
"build": "npm run build:ts && npm run analyze && npm run api",
"build:ts": "tsc",
"analyze": "wca analyze \"src/**/*.ts\" --outFile custom-elements.json",
"api": "wca src/lib/chessboard-element.ts -f json2 --outFile docs-src/_data/docs.json --inlineTypes",
"format": "prettier src/lib/* --write",
"lint": "eslint src/lib/*.ts",
"bundle": "rollup -c"
},
"dependencies": {
"lit-element": "^2.2.1",
"lit-html": "^1.2.1"
}
}