-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.68 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
83
84
85
86
87
88
89
90
91
92
{
"name": "solid-motion",
"version": "0.1.0",
"description": "A tiny, performant animation library for SolidJS",
"license": "MIT",
"author": "Damian Tarnawski <gthetarnav@gmail.com>; David Di Biase <dave.dibiase@gmail.com>",
"contributors": [
"Matt Perry <mattgperry@gmail.com>",
"Phil <phil.schaffarzyk@gridventures.de>"
],
"private": false,
"sideEffects": false,
"scripts": {
"prepublishOnly": "pnpm build",
"build": "tsup",
"dev": "vite --config playground/vite.config.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --cache -w .",
"lint": "pnpm run lint:code && pnpm run lint:types",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 --ext .js,.jsx,.ts,.tsx src test e2e playground stories .storybook",
"lint:types": "tsc --noEmit && tsc --noEmit -p test && tsc --noEmit -p e2e && tsc --noEmit -p playground && tsc --noEmit -p .storybook"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"typesVersions": {},
"dependencies": {
"@solid-primitives/props": "4.0.0-next.3",
"@solid-primitives/refs": "3.0.0-next.2",
"@solid-primitives/transition-group": "2.0.0-next.2",
"csstype": "^3.1.3",
"framer-motion": "^13.1.1",
"motion-dom": "^13.1.1"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@solidjs/testing-library": "1.0.0-beta.2",
"@solidjs/vite-plugin": "^3.0.0-next.37",
"@solidjs/web": "2.0.0-rc.5",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"jsdom": "^30.0.1",
"prettier": "^3.1.1",
"solid-js": "2.0.0-rc.5",
"storybook": "^10.6.0",
"storybook-solidjs-vite": "^10.7.1",
"tsup": "^8.0.1",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.3.3",
"vite": "^8.2.2",
"vite-plugin-solid": "3.0.0-next.27",
"vitest": "^4.1.11"
},
"peerDependencies": {
"solid-js": "^2.0.0-rc.0"
},
"packageManager": "pnpm@10.9.0",
"pnpm": {
"overrides": {
"babel-preset-solid": "2.0.0-rc.2",
"vite-plugin-solid": "3.0.0-next.27"
}
}
}