-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.67 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.67 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
{
"name": "fuzion",
"version": "0.2.0",
"description": "High-performance shortcut fusion for JavaScript and TypeScript array operations",
"private": false,
"license": "MIT",
"author": "kioviensis",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.js",
"source": "src/publicApi.ts",
"types": "dist/publicApi.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/kioviensis/fuzion.git"
},
"bugs": {
"url": "https://github.com/kioviensis/fuzion/issues"
},
"homepage": "https://github.com/kioviensis/fuzion#readme",
"scripts": {
"start": "monoreact watch",
"build": "monoreact build",
"test": "monoreact test --passWithNoTests",
"test:watch": "monoreact test",
"lint": "monoreact lint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "monoreact lint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"prepublishOnly": "yarn build"
},
"publishConfig": {
"access": "public"
},
"workspace": true,
"devDependencies": {
"@types/jest": "30.0.0",
"@typescript-eslint/parser": "8.46.0",
"eslint": "9.37.0",
"eslint-config-prettier": "10.1.8",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "5.5.4",
"monoreact": "0.35.0",
"prettier": "3.6.2",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"engines": {
"node": ">=16.0.0"
},
"resolutions": {
"node-sass": "npm:sass@^1.77.0"
},
"keywords": [
"shortcut-fusion",
"array-optimization",
"functional-programming",
"performance",
"typescript",
"map",
"filter",
"take",
"forEach",
"fusion",
"optimization"
]
}