-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (61 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (61 loc) · 1.69 KB
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
59
60
61
62
{
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "dist/types/index.d.ts",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.2",
"@types/node": "^18.11.9",
"alex": "^11.0.0",
"ava": "^5.1.0",
"esbuild": "^0.15.14",
"husky": "^8.0.2",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.3",
"rollup": "^3.5.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"scripts": {
"preci": "rm -rf node_modules",
"ci": "yarn install --frozen-lockfile",
"reset": "rm -rf .git && git init",
"setup": "npx husky install",
"build": " rollup -c .config/rollup.config.js",
"dev": "yarn build --watch",
"lint": "alex .",
"semantic-release": "semantic-release --branches release",
"test": "ava"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--no-warnings",
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
]
},
"name": "colrjs",
"version": "1.0.0",
"description": "A modular tool to extract Color Palettes out of an Images Pixelarray",
"author": "Dominik Strangas",
"private": false,
"unpkg": "./dist/index.browser.min.js"
}