-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.57 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@nclslbrn/artistry-swatch",
"description": "A package to get random palette from iconic painting of art history",
"author": "Nicolas Lebrun <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/nclslbrn/artistry-swatch",
"repository": {
"type": "git",
"url": "https://github.com/nclslbrn/artistry-swatch.git"
},
"bugs": {
"url": "https://github.com/nclslbrn/artistry-swatch/issues"
},
"keywords": [
"colors",
"creativecoding",
"palette",
"colorscheme",
"art-history",
"generativeart",
"paintings",
"swatch"
],
"version": "0.0.6",
"type": "module",
"main": "./dist/artistry-swatch.umd.cjs",
"module": "./dist/artistry-swatch.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/artistry-swatch.js",
"require": "./dist/artistry-swatch.umd.cjs",
"type": "./dist/index.d.ts"
}
},
"files": [
"dist/*.js",
"dist/*.cjs",
"dist/*.d.ts"
],
"scripts": {
"dev": "vite",
"test": "jest",
"preview": "vite preview",
"build": "tsc --project tsconfig.build.json && vite build",
"deploy": "npm publish",
"demo:dev": "vite demo/ --host",
"demo:build": "tsc && vite build demo/"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.6.4"
},
"publishConfig": {
"@nclslbrn:registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=16.2"
}
}