-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "solid-transition-group",
"description": "Components to manage animations for SolidJS",
"author": "Ryan Carniato",
"license": "MIT",
"version": "0.3.0",
"homepage": "https://github.com/solidjs/solid-transition-group#readme",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/solid-transition-group"
},
"sideEffects": false,
"private": false,
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "astro dev",
"build:site": "astro build",
"build": "tsc -b tsconfig.build.json",
"test:client": "vitest",
"test:ssr": "pnpm run test:client --mode ssr",
"test": "concurrently pnpm:test:*",
"format": "prettier -w **/*.{js,ts,json,css,tsx,jsx} --ignore-path .gitignore",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@astrojs/solid-js": "^2.2.0",
"@astrojs/tailwind": "^4.0.0",
"astro": "^2.10.1",
"concurrently": "^9.1.2",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"solid-js": "^1.9.4",
"tailwindcss": "^3.3.3",
"typescript": "^5.7.3",
"vite-plugin-solid": "^2.11.0",
"vitest": "^2.1.8"
},
"dependencies": {
"@solid-primitives/refs": "^1.1.0",
"@solid-primitives/transition-group": "^1.1.0"
},
"peerDependencies": {
"solid-js": "^1.6.12"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}