-
-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 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
{
"name": "@preact/signals-core",
"version": "1.14.2",
"license": "MIT",
"description": "Manage state with style in every framework",
"keywords": [],
"authors": [
"The Preact Authors (https://github.com/preactjs/signals/contributors)"
],
"repository": {
"type": "git",
"url": "https://github.com/preactjs/signals"
},
"bugs": "https://github.com/preactjs/signals/issues",
"homepage": "https://preactjs.com",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/preact"
},
"amdName": "preactSignalsCore",
"main": "dist/signals-core.js",
"module": "dist/signals-core.module.js",
"unpkg": "dist/signals-core.min.js",
"types": "dist/signals-core.d.ts",
"source": "src/index.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/signals-core.d.ts",
"browser": "./dist/signals-core.module.js",
"import": "./dist/signals-core.mjs",
"require": "./dist/signals-core.js"
}
},
"mangle": "../../mangle.json",
"scripts": {
"prepublishOnly": "cd ../.. && pnpm build:core"
},
"files": [
"src",
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public",
"provenance": true
}
}