-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.83 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
{
"name": "structurajs",
"version": "0.12.9",
"description": "A very fast and lightweight Typescript library to create immutable states with a mutable syntax",
"homepage": "https://giusepperaso.github.io/structura.js/",
"repository": {
"type": "git",
"url": "git+https://github.com/GiuseppeRaso/structura.js"
},
"keywords": [
"immutability",
"structural-sharing",
"state"
],
"author": "Giuseppe Raso",
"license": "MIT",
"main": "./dist/index.js",
"exports":{
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/umd.js"
}
},
"unpkg": "./dist/umd.js",
"jsdelivr": "./dist/umd.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --project tsconfig.build.json && vite build && tsc --project tsconfig.build.declarations.json && cp ./dist/index.d.ts ./dist/cjs.d.ts",
"preview": "vite preview",
"test": "vitest --coverage",
"test:prod": "vitest run",
"benchmark": "node --experimental-specifier-resolution=node --loader ts-node/esm ./src/tests/benchmark",
"benchmark:only": "npm run benchmark --skip-screenshots --skip-copy",
"benchmark:screenshot": "npm run benchmark --skip-benchmarks --skip-copy",
"benchmark:copy": "npm run benchmark --skip-benchmarks --skip-screenshots",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"devDependencies": {
"@types/node": "^18.8.5",
"@vitest/coverage-c8": "^0.29.8",
"benny": "^3.7.1",
"c8": "^7.12.0",
"immer": "^9.0.15",
"immutable": "^4.1.0",
"puppeteer": "^19.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.5.4",
"vite": "^3.1.3",
"vitepress": "^1.0.0-alpha.13",
"vitest": "^0.29.8",
"vue": "^3.2.38"
},
"volta": {
"node": "18.11.0"
}
}