-
-
Notifications
You must be signed in to change notification settings - Fork 519
/
package.json
58 lines (58 loc) · 1.4 KB
/
package.json
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
{
"name": "emmet",
"version": "2.4.11",
"description": "Emmet — the essential toolkit for web-developers",
"main": "./dist/emmet.cjs",
"module": "./dist/emmet.es.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
"import": "./dist/emmet.es.js",
"require": "./dist/emmet.cjs"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -wc",
"test": "tsx --test ./test/*.ts",
"clean": "rimraf ./dist",
"prepublishOnly": "npm run clean && npm run build",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmetio/emmet.git"
},
"keywords": [
"emmet",
"html",
"css",
"snippets",
"coding"
],
"author": "Sergey Chikuyonok <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emmetio/emmet/issues"
},
"homepage": "https://github.com/emmetio/emmet#readme",
"dependencies": {
"@emmetio/abbreviation": "^2.3.3",
"@emmetio/css-abbreviation": "^2.1.8"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.10.1",
"lerna": "^8.1.7",
"rimraf": "^6.0.1",
"rollup": "^4.27.4",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"workspaces": [
"./packages/scanner",
"./packages/abbreviation",
"./packages/css-abbreviation",
"./"
]
}