-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.52 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": "functools-kit",
"version": "1.0.13",
"description": "A library with helpers for react-declarative app backend development",
"author": {
"name": "Petr Tripolsky",
"email": "tripolskypetr@gmail.com",
"url": "https://github.com/tripolskypetr"
},
"funding": {
"type": "individual",
"url": "http://paypal.me/tripolskypetr"
},
"license": "MIT",
"homepage": "https://react-declarative-playground.github.io",
"keywords": [
"react-declarative",
"functional-programming",
"helpers"
],
"files": [
"build",
"types.d.ts",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/react-declarative/react-declarative",
"documentation": "https://github.com/react-declarative/react-declarative/tree/master/docs"
},
"bugs": {
"url": "https://github.com/react-declarative/react-declarative/issues"
},
"scripts": {
"build": "rollup -c"
},
"main": "build/index.cjs",
"module": "build/index.mjs",
"source": "src/index.ts",
"types": "./types.d.ts",
"exports": {
"require": "./build/index.cjs",
"types": "./types.d.ts",
"import": "./build/index.mjs",
"default": "./build/index.cjs"
},
"devDependencies": {
"@rollup/plugin-typescript": "11.1.6",
"@types/node": "22.9.0",
"rollup": "3.29.4",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-inject-process-env": "1.3.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"tslib": "2.7.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}