-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.62 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
{
"name": "@ktsn/spring",
"version": "1.0.0-beta.4",
"description": "Spring animation library for Vue.js",
"keywords": [
"animation",
"spring",
"vue"
],
"homepage": "https://github.com/ktsn/spring",
"license": "MIT",
"author": "Katashin",
"repository": {
"type": "git",
"url": "https://github.com/ktsn/spring.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/ktsn-spring.cjs",
"module": "./dist/ktsn-spring.mjs",
"types": "./dist/ktsn-spring.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/ktsn-spring.d.mts",
"default": "./dist/ktsn-spring.mjs"
},
"require": {
"types": "./dist/ktsn-spring.d.cts",
"default": "./dist/ktsn-spring.cjs"
}
}
},
"scripts": {
"dev": "vp dev",
"build": "vp pack",
"build:demo": "vp build",
"typecheck": "tsc -b .",
"test": "vp test",
"format": "vp fmt",
"format:check": "vp fmt --check",
"lint": "vp lint --deny-warnings",
"lint:fix": "vp lint --fix",
"release": "./scripts/release.sh",
"prepare": "vp config"
},
"devDependencies": {
"@types/node": "25.9.5",
"@vitejs/plugin-vue": "6.0.8",
"conventional-changelog": "8.1.3",
"conventional-changelog-angular": "9.4.0",
"jsdom": "29.1.1",
"typescript": "6.0.3",
"vite-plus": "catalog:",
"vue": "3.5.42",
"vue-tsc": "3.3.11"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"packageManager": "pnpm@11.25.0+sha512.5cde925b4f075f725eb71fbae18a42ffe784524789f19b61c731cb8721ec28aaee160e01a8d5af4fedb2a42cdbf300efe23db356b0d4a17b4d63e11f8ab7c956"
}