generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.75 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"version": "0.1.2",
"name": "@cookbook/solid-intl",
"description": "A universal internationalization (i18n) for Solid inspired by React Intl & FormatJS",
"license": "MIT",
"author": "Marcos Gonçalves <contact@themgoncalves.com>",
"contributors": ["Matt Wells (https://github.com/lvl-mattwells)"],
"repository": {
"type": "git",
"url": "git+https://github.com/the-cookbook/solid-intl.git"
},
"homepage": "https://github.com/the-cookbook/solid-intl#readme",
"bugs": {
"url": "https://github.com/the-cookbook/solid-intl/issues"
},
"publishConfig": {
"access": "public"
},
"private": false,
"sideEffects": false,
"type": "module",
"files": [
"dist"
],
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"solid": "./dist/source/index.js",
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"browser": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.cjs"
}
},
"require": {
"default": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"node": {
"default": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
}
}
},
"scripts": {
"dev": "vite serve dev",
"test": "vitest && npm run test:types",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage && npm run test:types",
"test:types": "tsc --project tsconfig.test.json",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"format": "prettier -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"update-deps": "taze -w && npm i",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"solid-js": ">=1.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "^29.2.5",
"@types/testing-library__jest-dom": "^5.14.5",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^20.0.3",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.11",
"rollup": "^2.77.2",
"rollup-preset-solid": "^1.4.0",
"solid-jest": "^0.2.0",
"solid-js": "^1.4.8",
"solid-testing-library": "^0.5.0",
"taze": "^0.7.6",
"typescript": "^4.7.4",
"vite": "^3.0.4",
"vite-plugin-solid": "^2.5.0",
"vitest": "^0.26.3"
},
"keywords": [
"solid",
"i18n",
"internation",
"ssr"
],
"dependencies": {
"@formatjs/intl": "^2.6.3"
},
"packageManager": "pnpm@7.5.0"
}