-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "poline",
"version": "0.7.0",
"description": "color palette generator mico-lib",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.min.mjs",
"browser": "./dist/index.min.js",
"jsdelivr": "./dist/index.umd.js",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run lint && tsc --build && node ./build.js",
"test": "npm run lint && echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts && npx prettier --check ./src/",
"prettier": "npx prettier --write ./src/",
"bsc": "browser-sync start --server 'dist' --files 'dist'",
"watch": "esbuild ./src/index.ts --bundle --sourcemap --outfile=./dist/index.mjs --format=esm --watch",
"dev": "npm-run-all --parallel watch bsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meodai/poline.git"
},
"keywords": [
"color",
"generative-art",
"colour",
"palette-generation",
"generative"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/meodai/poline/issues"
},
"homepage": "https://github.com/meodai/poline#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"browser-sync": "^2.27.11",
"esbuild": "^0.16.14",
"eslint": "^8.31.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
}
}