-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.24 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
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
{
"name": "@gebruederheitz/energize",
"version": "1.4.0",
"description": "Reactive DOM operations with plain ES6+",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
},
"./animations": {
"types": "./dist/types/animations/index.d.ts",
"require": "./dist/animations/index.js",
"import": "./dist/animations/esm/index.js"
},
"./animations.css": {
"require": "./dist/animations/styles.css",
"import": "./dist/animations/styles.css"
}
},
"typesVersions": {
"*": {
".": [
"dist/types/index.d.ts"
],
"./animations": [
"dist/types/animations/index.d.ts"
]
}
},
"scripts": {
"prebuild": "rm -rf dist/",
"build": "rollup -c rollup.config.mjs",
"build:styles": "gulp",
"lint": "npm run prettier:check && npm run tscheck",
"prettier:check": "prettier -c --config .prettierrc src/",
"prettier:fix": "prettier -w --config .prettierrc src/",
"release": "release-it --only-version",
"test": "echo \"Error: no test specified\" && exit 1",
"tscheck": "tsc --noEmit -p ./tsconfig.json",
"prewatch": "rm -rf dist/",
"watch": "rollup -c rollup.config.mjs --watch",
"watch:styles": "gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gebruederheitz/energize.git"
},
"keywords": [
"DOM"
],
"author": "Andreas Gallus <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/gebruederheitz/energize/issues"
},
"homepage": "https://github.com/gebruederheitz/energize#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"autoprefixer": "^10.4.19",
"cssnano": "^7.0.4",
"gulp": "^5.0.0",
"gulp-dart-sass": "^1.1.0",
"gulp-postcss": "^10.0.0",
"prettier": "^3.2.5",
"release-it": "^17.1.1",
"rollup": "^4.19.0",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"svelte": "^4.2.18"
}
}