-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.68 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
{
"name": "@auaust/jaune",
"license": "GPL-3.0-only",
"type": "module",
"version": "0.0.5",
"publishConfig": {
"access": "public"
},
"description": "A Color class that helps you work with colors!",
"packageManager": "pnpm@9.15.0",
"author": {
"name": "Aurian Aubert",
"email": "aurian@auaust.ch",
"url": "https://auaust.ch"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm test && pnpm build:notest",
"build:notest": "pnpm run build:clean && pnpm run build:js",
"build:clean": "rimraf dist",
"build:js": "tsup",
"test": "vitest run --config vitest.config.ts --typecheck -- && pnpm typecheck",
"test:dist": "pnpm build:notest && vitest run --config vitest.config.ts --typecheck --mode build --",
"watch": "vitest --config vitest.config.ts --typecheck --",
"coverage": "vitest run --coverage",
"typecheck": "echo 'Typechecking...' && tsc --noEmit && echo 'All good!'",
"ci:publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@vitest/coverage-istanbul": "^4.0.16",
"rimraf": "^6.1.2",
"tsup": "^8.5.1",
"type-fest": "^5.3.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"files": [
"dist",
"src"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.js",
"require": "./dist/utils.cjs"
}
},
"dependencies": {
"@auaust/primitive-kit": "^0.41.9"
}
}