forked from riccardoperra/codeimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "@codeimage/locale",
"version": "0.6.1",
"module": "./dist/locale.mjs",
"source": "./src/public-api.ts",
"types": "./dist/public-api.d.ts",
"exports": {
".": {
"import": "./dist/locale.mjs",
"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-prettier": "prettier --write",
"pre-commit-eslint": "eslint --ext .js,.jsx,.mjs,.ts,.tsx -c ../../.eslintrc.js --fix",
"lint": "eslint . --ext .js,.jsx,.mjs,.ts,.tsx -c ../../.eslintrc.js",
"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.1.1",
"solid-js": "^1.5.7"
},
"peerDependencies": {
"solid-js": "^1.5.2"
},
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^4.8.4",
"vite": "^3.1.8",
"vite-plugin-dts": "^1.6.6",
"vite-plugin-solid": "^2.3.9"
}
}