-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "@dreamonkey/quasar-app-extension-animate",
"version": "2.3.0",
"description": "Extend Quasar animation system",
"keywords": [
"quasar",
"animate",
"intersection"
],
"author": "Paolo Caleffi <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src"
],
"main": "dist/exports.js",
"module": "dist/esm/exports.js",
"typings": "dist/types/exports.d.ts",
"scripts": {
"build": "rm -rf dist && tsc --declaration --declarationDir dist/types && tsc --project tsconfig.esm.json && copyfiles -f src/css/animations.scss src/css/animations-utilities.scss dist",
"install-build-clean": "yarn install && yarn build && rm -rf node_modules",
"test": "echo \"No test specified\" && exit 0",
"deploy": "yarn build && yarn publish --tag latest"
},
"repository": "github:dreamonkey/quasar-app-extension-animate",
"bugs": "https://github.com/dreamonkey/quasar-app-extension-animate/issues",
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.14.12",
"yarn": ">= 1.17.3"
},
"devDependencies": {
"@babel/types": "^7.17.0",
"copyfiles": "^2.4.1",
"typescript": "^4.6.2",
"vue": "^3.2.31"
},
"peerDependencies": {
"quasar": "^2.0.0",
"vue": "^3.2.0"
},
"publishConfig": {
"access": "public"
}
}