forked from willybrauner/compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "@cher-ami/compose",
"version": "0.16.0",
"description": "Compose is a small and type-safe library that links your javascript to your DOM.",
"author": "Willy Brauner",
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"private": false,
"keywords": [
"compose",
"page-transitions",
"component",
"stack"
],
"repository": {
"type": "git",
"url": "https://github.com/willybrauner/compose.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
"build": "npm run clean && microbundle",
"build:watch": "microbundle watch",
"example-basic:dev": "pnpm --filter ./examples/basic run dev",
"example-basic:build": "pnpm --filter ./examples/basic run build",
"documentation:dev": "pnpm --filter ./documentation run start",
"documentation:build": "pnpm --filter ./documentation run build",
"test:watch": "vitest --reporter verbose",
"test": "vitest run",
"pre-publish": "npm run build && npm run test"
},
"dependencies": {
"@cher-ami/debug": "^1.2.0",
"history": "^5.3.0"
},
"devDependencies": {
"happy-dom": "^7.8.1",
"microbundle": "^0.15.1",
"prettier": "^2.8.8",
"vite": "^3.2.7",
"vitest": "^0.24.5"
},
"prettier": {
"printWidth": 90,
"semi": false
}
}