-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "friction-dom",
"version": "0.0.0",
"description": "Treat DOM elements like objects sliding around on the page",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"start": "concurrently npm:start:*",
"start:docs": "npm run build:docs -- --serve",
"start:js": "npm run build:js -- --watch",
"build": "npm run build:js && npm run build:types && npm run build:docs",
"build:docs": "eleventy",
"build:js": "rollup -c",
"build:types": "tsc --declaration --declarationMap --emitDeclarationOnly --outFile dist/types/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist",
"src/lib",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RyanBerliner/friction-dom.git"
},
"keywords": [
"animation",
"motion",
"javascript",
"typescript"
],
"author": "Ryan Berliner",
"license": "MIT",
"bugs": {
"url": "https://github.com/RyanBerliner/friction-dom/issues"
},
"homepage": "https://github.com/RyanBerliner/friction-dom#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"concurrently": "^8.0.1",
"rollup": "^3.20.2",
"tslib": "^2.5.0",
"typescript": "^5.0.3"
}
}