-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2 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
{
"name": "@optionfactory/fml",
"version": "8.0.0",
"type": "module",
"main": "./dist/fml.mjs",
"module": "./dist/fml.mjs",
"types": "./dist/fml.d.mts",
"exports": {
".": {
"types": "./dist/fml.d.mts",
"import": "./dist/fml.mjs"
},
"./ftl": {
"types": "./dist/ftl.d.mts",
"import": "./dist/ftl.mjs"
},
"./httpc": {
"types": "./dist/httpc.d.mts",
"import": "./dist/httpc.mjs"
},
"./ful": {
"types": "./dist/ful.d.mts",
"import": "./dist/ful.mjs"
}
},
"files": [
"dist"
],
"repository": {
"url": "git+https://github.com/optionfactory/fml.git"
},
"keywords": [
"templating",
"dom",
"webcomponents",
"ui",
"browser",
"webcomponents",
"httpclient"
],
"license": "MIT",
"author": "rferranti",
"contributors": [],
"scripts": {
"initialize": "npm install",
"build": "rollup --config rollup.conf.mjs",
"check": "tsc --project ./jsconfig.json",
"lint": "biome lint .",
"format": "biome format --write .",
"clean": "rm -rf dist && npm prune",
"clean:deps": "rm -rf node_modules && rm -rf coverage",
"test": "wtr --config test/web-test-runner.config.mjs",
"test:manual": "npm run test -- --manual",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@esm-bundle/chai": "^4.3.4",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@web/test-runner": "^1.0.0",
"@web/test-runner-playwright": "^1.0.0",
"peggy": "^5.1.0",
"rimraf": "^6.1.3",
"rollup": "^4.18.0",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.101.0",
"terser": "^5.49.0",
"tinybench": "^6.0.2",
"typescript": "^7.0.2"
}
}