1 | {
|
2 | "name": "emmet",
|
3 | "version": "2.4.11",
|
4 | "description": "Emmet — the essential toolkit for web-developers",
|
5 | "main": "./dist/emmet.cjs",
|
6 | "module": "./dist/emmet.es.js",
|
7 | "types": "./dist/index.d.ts",
|
8 | "type": "module",
|
9 | "exports": {
|
10 | "import": "./dist/emmet.es.js",
|
11 | "require": "./dist/emmet.cjs"
|
12 | },
|
13 | "scripts": {
|
14 | "build": "rollup -c",
|
15 | "watch": "rollup -wc",
|
16 | "test": "tsx --test ./test/*.ts",
|
17 | "clean": "rimraf ./dist",
|
18 | "prepare": "npm run clean && npm run build"
|
19 | },
|
20 | "repository": {
|
21 | "type": "git",
|
22 | "url": "git+https://github.com/emmetio/emmet.git"
|
23 | },
|
24 | "keywords": [
|
25 | "emmet",
|
26 | "html",
|
27 | "css",
|
28 | "snippets",
|
29 | "coding"
|
30 | ],
|
31 | "author": "Sergey Chikuyonok <serge.che@gmail.com>",
|
32 | "license": "MIT",
|
33 | "bugs": {
|
34 | "url": "https://github.com/emmetio/emmet/issues"
|
35 | },
|
36 | "homepage": "https://github.com/emmetio/emmet#readme",
|
37 | "dependencies": {
|
38 | "@emmetio/abbreviation": "^2.3.3",
|
39 | "@emmetio/css-abbreviation": "^2.1.8"
|
40 | },
|
41 | "devDependencies": {
|
42 | "@rollup/plugin-node-resolve": "^15.2.3",
|
43 | "@rollup/plugin-typescript": "^11.1.6",
|
44 | "@types/node": "^22.1.0",
|
45 | "lerna": "^8.1.7",
|
46 | "rimraf": "^6.0.1",
|
47 | "rollup": "^4.20.0",
|
48 | "tsx": "^4.16.5",
|
49 | "typescript": "^5.5.4"
|
50 | },
|
51 | "workspaces": [
|
52 | "./packages/scanner",
|
53 | "./packages/abbreviation",
|
54 | "./packages/css-abbreviation",
|
55 | "./"
|
56 | ]
|
57 | }
|