-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "rangarang",
"version": "2.1.1",
"description": "Chooses the best colors from a picture.",
"type": "module",
"source": "lib/index.ts",
"main": "dist/rangarang.cjs",
"module": "dist/rangarang.js",
"exports": {
"require": "./dist/rangarang.cjs",
"default": "./dist/rangarang.js"
},
"sideEffects": false,
"typings": "dist/index.d.ts",
"scripts": {
"build": "microbundle",
"serve": "serve -l 8080",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hkh12/rangarang.git"
},
"keywords": [
"color",
"colour",
"detection",
"image",
"picture",
"canvas"
],
"author": "Hosein Khansari <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hkh12/rangarang/issues"
},
"homepage": "https://github.com/hkh12/rangarang#readme",
"devDependencies": {
"microbundle": "^0.15.1",
"prettier": "^3.0.0",
"serve": "^11.3.2"
},
"mangle": {
"regex": "^_"
}
}