-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "manatea",
"version": "1.0.0",
"sideEffects": false,
"source": "src/index.ts",
"umd:main": "dist/manatea.umd.js",
"main": "dist/manatea.js",
"module": "dist/manatea.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/manatea.modern.mjs",
"browser": "./dist/manatea.modern.mjs",
"require": "./dist/manatea.js"
},
"./package.json": "./package.json"
},
"license": "MIT",
"author": "Ayc0",
"repository": "git@github.com:Ayc0/Manatea.git",
"bugs": "https://github.com/Ayc0/Manatea/issues",
"homepage": "https://github.com/Ayc0/Manatea/tree/master/packages/manatea#readme",
"keywords": [
"javascript",
"state",
"immutable",
"lightweight",
"atom"
],
"files": [
"dist"
],
"scripts": {
"start": "microbundle watch",
"test": "jest",
"build:clean": "rm -rf dist",
"build:action": "microbundle",
"build": "pnpm build:clean && pnpm build:action"
},
"devDependencies": {
"@swc/core": "^1.15.21",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"jest": "^30.3.0",
"microbundle": "^0.15.1",
"typescript": "^6.0.2"
}
}