-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "typewriter",
"version": "0.1.0",
"description": "Typewriter effects configurable from HTML",
"main": "dist/typewriter.mjs",
"type": "module",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"dev": "rollup -c --watch",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iansedano/typewriter-js.git"
},
"author": "Ian Currie Sedano",
"license": "ISC",
"bugs": {
"url": "https://github.com/iansedano/typewriter-js/issues"
},
"homepage": "https://github.com/iansedano/typewriter-js#readme",
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"cross-env": "^7.0.3",
"jsdom": "^25.0.0",
"rollup": "^4.21.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-gzip": "^4.0.1",
"rollup-plugin-includepaths": "^0.2.4",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}