-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.04 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@embra/reactivity",
"version": "0.0.8",
"description": "A lightweight, composable and explicit reactivity system.",
"repository": "embrajs/reactivity",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"react": [
"dist/react.d.ts"
],
"debug": [
"dist/debug.d.ts"
]
}
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./react": {
"require": {
"types": "./dist/react.d.ts",
"default": "./dist/react.js"
},
"import": {
"types": "./dist/react.d.mts",
"default": "./dist/react.mjs"
}
},
"./debug": {
"require": {
"types": "./dist/debug.d.ts",
"default": "./dist/debug.js"
},
"import": {
"types": "./dist/debug.d.mts",
"default": "./dist/debug.mjs"
}
}
},
"sideEffects": false,
"files": [
"src",
"dist"
],
"author": {
"name": "CRIMX",
"email": "straybugs@gmail.com",
"url": "https://github.com/crimx/"
},
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write .",
"ts-check": "tsc --noEmit",
"docs": "typedoc --options typedoc.json && prettier --ignore-path .prettierignore --write docs && export-size-svg",
"docs:watch": "typedoc --options typedoc.json --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ci": "vitest --coverage --coverage.reportsDirectory='./docs/coverage'",
"build": "tsup --config tsup.debug.config.ts && tsup --config tsup.config.ts && tsup --config tsup.react.config.ts",
"build:min": "MINIFY=true tsup --env.NODE_ENV production && echo '' && gzip-size dist/index.mjs dist/index.js",
"release": "commit-and-tag-version"
},
"keywords": [
"observable",
"react",
"reactive",
"model",
"frp",
"functional-reactive-programming",
"data flow"
],
"license": "MIT",
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.9",
"@wopjs/eslint-config": "^0.1.79",
"@wopjs/gzip-size": "^0.1.5",
"commit-and-tag-version": "^12.7.3",
"eslint": "^10.6.0",
"export-size-svg": "^0.0.7",
"jest-extended": "^7.0.0",
"jsdom": "^29.1.1",
"prettier": "^3.9.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tsup": "^8.5.1",
"typedoc": "^0.28.20",
"typescript": "^6.0.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.3"
},
"peerDependencies": {
"@types/react": ">=18.0.0",
"react": ">=18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"react": {
"optional": true
}
}
}