-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.97 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
{
"name": "animxyz",
"version": "0.0.0",
"private": true,
"description": "AnimXYZ is a composable animation library that makes your site shine",
"homepage": "https://animxyz.com",
"author": "Ingram Projects (https://github.com/ingram-projects/animxyz/graphs/contributors)",
"contributors": [
"Miles Ingram <milesingrams@gmail.com> (https://milesingram.me/)",
"Mattan Ingram <mattaningram@gmail.com> (http://mattaningram.com/)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ingram-projects/animxyz.git"
},
"license": "MIT",
"packageManager": "npm@11.8.0",
"workspaces": [
"packages/*",
"examples/*",
"site",
"tests/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"lint-files": "eslint --ignore-path .gitignore --fix",
"lint-all": "npm run lint-files -- --ext .js,.jsx,.vue,.ts,.tsx,.astro .",
"pre-commit": "lint-staged",
"commit-msg": "npx --no-install commitlint --edit \"$1\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"turbo": "^2.3.3",
"vue": "^3.5.13"
},
"overrides": {
"@astrojs/vue": {
"vue": "^3.5.13"
},
"@vitejs/plugin-vue": {
"vue": "^3.5.13"
},
"@vitejs/plugin-vue-jsx": {
"vue": "^3.5.13"
},
"vite-plugin-vue-devtools": {
"vue": "^3.5.13"
},
"vite-svg-loader": {
"vue": "^3.5.13"
},
"@vue/server-renderer": {
"vue": "^3.5.13"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx,astro}": [
"npm run lint-files"
]
}
}