-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.06 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
{
"name": "@aggre/ullr",
"version": "3.3.0",
"description": "Functional Web Components",
"type": "module",
"main": "dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/ullr.d.ts"
},
"types": "dist/ullr.d.ts",
"files": [
"dist/*.mjs",
"dist/*.js",
"dist/*.ts",
"!**/*.test.*",
"!**/test.js"
],
"scripts": {
"test": "wtr && mocha dist/test.js --require ./node_modules/browser-env/register.js",
"pretest": "npm run build",
"build": "npm run build:ts && npm run build:rollup",
"build:ts": "tsc -p ./",
"build:rollup": "rollup -c",
"prebuild": "npm run lint && npm run clean",
"clean": "rimraf dist",
"lint": "npm run lint:eslint && npm run lint:format",
"lint:eslint": "eslint ./src --fix",
"lint:format": "prettier --write '**/*.{ts,json,md,yml}'",
"prepack": "npm run build"
},
"author": "aggre",
"contributors": [
"aggre <hiroyuki.aggre@gmail.com> (https://github.com/aggre)"
],
"license": "MIT",
"dependencies": {
"ramda": "^0.32.0",
"type-fest": "^5.0.0"
},
"peerDependencies": {
"lit": "^2.0.0-rc.2 || ^3.0.0",
"rxjs": "^6.6.3 || ^6.6.3 || ^6.6.3 || ^7.0.0"
},
"devDependencies": {
"@esm-bundle/chai": "4.3.4",
"@rollup/plugin-commonjs": "29.0.3",
"@rollup/plugin-multi-entry": "7.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/mocha": "10.0.10",
"@types/node": "24.13.4",
"@types/ramda": "0.32.0",
"@web/test-runner": "1.0.0",
"@web/test-runner-puppeteer": "1.0.1",
"browser-env": "3.3.0",
"eslint": "9.39.5",
"eslint-config-prettier": "10.1.8",
"lit": "3.3.3",
"mocha": "12.0.0",
"prettier": "3.9.6",
"rimraf": "6.1.3",
"rollup": "4.63.1",
"rollup-plugin-dts": "6.5.1",
"rxjs": "7.8.2",
"typescript": "5.9.3",
"typescript-eslint": "^8.53.0",
"typescript-lit-html-plugin": "0.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aggre/ullr.git"
},
"bugs": {
"url": "https://github.com/aggre/ullr/issues"
},
"homepage": "https://github.com/aggre/ullr#readme"
}