-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "@macrostrat/hyper",
"version": "3.0.6",
"description": "Macrostrat's hyperscript alternative to JSX",
"main": "dist/hyper.cjs",
"module": "dist/hyper.mjs",
"types": "dist/types.d.ts",
"source": "src/index.ts",
"scripts": {
"prepack": "npm run build",
"build": "parcel build",
"dev": "vite example"
},
"publishConfig": {
"access": "public"
},
"author": "Daven Quinn",
"license": "ISC",
"repository": {
"type": "git",
"url": " https://github.com/UW-Macrostrat/hyper.git"
},
"peerDependencies": {
"react": ">= 0.12.0 < 20.0.0"
},
"dependencies": {
"@types/react": ">= 16.0.0 < 20.0.0",
"classnames": "^2.5.1"
},
"exports": {
".": {
"typescript": "./src",
"import": "./dist/hyper.mjs",
"require": "./dist/hyper.cjs",
"types": "./dist/types.d.ts"
},
"./dist/": {
"import": "./dist/",
"require": "./dist/"
}
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@parcel/core": "^2.12.0",
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"parcel": "^2.12.0",
"postcss-nesting": "^13.0.1",
"prettier": "^3.5.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.6.3",
"vite": "^5.0"
},
"packageManager": "[email protected]+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
}