-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "@codeimage/locale",
"version": "0.8.0",
"module": "./dist/locale.mjs",
"main": "./dist/locale.js",
"source": "./src/public-api.ts",
"types": "./dist/public-api.d.ts",
"exports": {
".": {
"import": "./dist/locale.mjs",
"node": "./dist/locale.js",
"browser": "./dist/locale.mjs",
"require": "./dist/locale.js",
"types": "./dist/public-api.d.ts"
}
},
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"preview": "vite preview",
"pre-commit": "lint-staged --relative",
"pre-commit-format": "oxfmt",
"pre-commit-eslint": "oxlint --fix",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"clean": "rimraf dist",
"build-esm": "tsc -p tsconfig.esm.json",
"build-dts": "tsc -p tsconfig.dts.json",
"typecheck": "tsc --noEmit --skipLibCheck --project tsconfig.json",
"typecheck:ci": "tsc --skipLibCheck --project tsconfig.dts.json",
"dev": "chokidar \"src/**/*.{ts,tsx}\" -c \"pnpm build\""
},
"dependencies": {
"@solid-primitives/i18n": "1.2.4",
"solid-js": "catalog:next"
},
"peerDependencies": {
"solid-js": "catalog:next"
},
"devDependencies": {
"oxfmt": "catalog:next",
"oxlint": "catalog:next",
"rimraf": "catalog:next",
"typescript": "^6.0.2",
"vite": "catalog:next",
"vite-plugin-dts": "catalog:next",
"vite-plugin-solid": "catalog:next"
},
"engines": {
"node": ">=24"
}
}