-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "@ctrl/tinycolor",
"version": "0.0.0",
"description": "Fast, small color manipulation and conversion for JavaScript",
"author": "Scott Cooper <[email protected]>",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"homepage": "https://tinycolor.vercel.app",
"repository": "scttcper/tinycolor",
"keywords": [
"typescript",
"color",
"manipulation",
"tinycolor",
"hsa",
"rgb"
],
"main": "dist/public_api.js",
"module": "dist/module/public_api.js",
"typings": "dist/public_api.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"demo:build": "npm run build --workspace=demo",
"demo:watch": "npm run dev --workspace=demo",
"lint": "eslint --ext .js,.ts, .",
"lint:fix": "eslint --fix --ext .js,.ts, .",
"prepare": "npm run build",
"build": "del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build",
"docs:build": "typedoc --out demo/dist/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml"
},
"devDependencies": {
"@ctrl/eslint-config": "4.0.14",
"@rollup/plugin-terser": "0.4.4",
"@types/node": "20.11.5",
"@vitest/coverage-v8": "1.2.1",
"del-cli": "5.1.0",
"rollup": "4.9.5",
"ts-node": "10.9.2",
"typedoc": "0.25.7",
"typescript": "5.3.3",
"vitest": "1.2.1"
},
"workspaces": [
"demo"
],
"release": {
"branches": [
"master"
]
},
"engines": {
"node": ">=14"
}
}