forked from antonmedv/finder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.62 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.62 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@sec-ant/finder",
"description": "CSS Selector Generator",
"private": false,
"version": "0.2.0",
"type": "module",
"files": [
"./dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Sec-ant/finder.git"
},
"homepage": "https://github.com/Sec-ant/finder",
"bugs": {
"url": "https://github.com/Sec-ant/finder/issues",
"email": "zezhengwu@proton.me"
},
"keywords": [
"css",
"selector",
"generator"
],
"author": {
"name": "Ze-Zheng Wu"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"update-hooks": "simple-git-hooks",
"bump": "tsx ./scripts/bump.ts",
"dev": "vite",
"lint": "biome lint .",
"type-check": "tsc -p ./tsconfig.pkg.json --noEmit --emitDeclarationOnly false",
"format:prettier": "pretty-quick",
"format:biome": "biome format . --write",
"format": "pnpm -s format:prettier && pnpm -s format:biome",
"check:biome": "biome check --write .",
"check": "pnpm -s format:prettier && pnpm -s check:biome",
"clear:dist": "rimraf dist",
"prebuild": "pnpm -s check && pnpm -s type-check && pnpm -s clear:dist",
"build:es": "vite build",
"build:cjs": "tsx ./scripts/build-cjs.ts",
"build:iife": "tsx ./scripts/build-iife.ts",
"build": "conc \"pnpm:build:es\" \"pnpm:build:cjs\" \"pnpm:build:iife\"",
"postbuild:es": "tsc -p ./tsconfig.pkg.json --declarationDir ./dist/es",
"postbuild:cjs": "tsc -p ./tsconfig.pkg.json --declarationDir ./dist/cjs",
"preview": "vite preview",
"prepublishOnly": "pnpm -s build",
"browsers": "playwright install chromium firefox webkit",
"test": "pnpm -s browsers && vitest --hideSkippedTests",
"test:ui": "pnpm -s browsers && vitest --hideSkippedTests --ui"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.4",
"@types/node": "^22.15.18",
"@vitest/browser": "^3.1.3",
"@vitest/coverage-istanbul": "^3.1.3",
"@vitest/ui": "3.2.3",
"concurrently": "^9.1.2",
"lint-staged": "^16.0.0",
"npm-check-updates": "^18.0.1",
"playwright": "^1.52.0",
"prettier": "^3.5.3",
"pretty-quick": "^4.1.1",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.13.0",
"tsx": "^4.19.4",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.3"
},
"dependencies": {
"main-thread-scheduling": "^14.3.0"
},
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac"
}