-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.15 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
{
"name": "@macrostrat/hyper",
"version": "3.0.1",
"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"
},
"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",
"typescript": "^5.6.3"
},
"prettier": {}
}