-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
{
"name": "image-util",
"version": "0.0.1",
"description": "Image utility for composing filters",
"license": "Apache-2.0",
"main": "build/lib/index.js",
"types": "build/types/index.d.ts",
"type": "module",
"files": [
"build/dist",
"build/lib",
"build/types"
],
"keywords": [],
"scripts": {
"build": "run-p build:all build:types",
"build:all": "node esbuild.mjs --all",
"build:dist": "node esbuild.mjs --dist",
"build:examples": "node esbuild.mjs --examples",
"build:lib": "node esbuild.mjs --lib",
"build:types": "tsc --declaration --emitDeclarationOnly --skipLibCheck --project ./tsconfig.d.json --outDir ./build/types",
"clean": "run-p clean:**",
"clean:build": "rimraf build",
"clean:cache": "rimraf .rts2_cache",
"watch": "run-p watch:*",
"watch:scripts": "yarn build:all --watch",
"watch:types": "yarn build:types --watch",
"develop": "yarn build:examples --watch --dev-server",
"esbuild": "node esbuild.mjs",
"examples": "run-s build:examples",
"lint": "eslint --fix --config ./.eslintrc.cjs \"./{src,tests,examples}/**/*.{js,ts}\""
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/d3": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"copy": "^0.0.1",
"esbuild": "^0.12.11",
"eslint": "^7.27.0",
"eslint-config-esnext": "^4.1.0",
"eslint-plugin-import": "^2.23.3",
"globby": "^11.0.1",
"live-server": "1.2.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"run-p": "^0.0.0",
"typescript": "^4.1.2",
"yargs": "^16.2.0"
}
}